home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscClassDecoderPalette / MiscClassDecoderPalette.m < prev    next >
Text File  |  1994-11-25  |  855b  |  37 lines

  1. //
  2. // Time-stamp: <94/11/26 18:02:30 stephan>
  3. //
  4. //    MiscClassDecoderPalette.m
  5. //    
  6. //        Written by Stephan Wacker <stephan@rodion.muc.de>
  7. //        Copyright (c) 1994 by Stephan Wacker.
  8. //        Version 1.0  All rights reserved.
  9. //
  10. //        This notice may not be removed from this source code.
  11. //
  12. //    This object is included in the MiscKit by permission from the author
  13. //    and its use is governed by the MiscKit license, found in the file
  14. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  15. //    for a list of all applicable permissions and restrictions.
  16. //    
  17.  
  18.  
  19. #import "MiscClassDecoderPalette.h"
  20.  
  21.  
  22. @implementation  MiscClassDecoderPalette
  23.  
  24.  
  25. - finishInstantiate
  26. // Associate non-View objects.
  27. {
  28.     [self associateObject: decoder 
  29.      type: IBObjectPboardType
  30.      with: decoderRepresentative];
  31.     
  32.     return self;
  33. }
  34.  
  35.  
  36. @end    // MiscClassDecoderPalette
  37.